home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / var / lib / dpkg / info / gnome-session.prerm < prev    next >
Encoding:
Text File  |  2007-04-10  |  518 b   |  19 lines

  1. #!/bin/sh -e
  2.  
  3. if [ "$1" = "remove" ] || [ "$1" = upgrade ]; then
  4.   update-alternatives --remove x-session-manager /usr/bin/gnome-session
  5.   update-alternatives --remove desktop-splash \
  6.     /usr/share/pixmaps/splash/gnome-splash.png
  7.   update-alternatives --remove desktop-splash \
  8.     /usr/share/pixmaps/splash/gnome-debian-splash.png
  9. fi
  10.  
  11. # Automatically added by dh_gconf
  12. if [ "$1" = remove ] || [ "$1" = upgrade ]; then
  13.     gconf-schemas --unregister gnome-session.schemas 
  14. fi
  15. # End automatically added section
  16.  
  17.  
  18. exit 0
  19.